MULTIVERSE



image_file: https://raw.githubusercontent.com/karlinarayberinger/KARLINA_OBJECT_summer_2023_starter_pack/main/continuum_and_slices_07_september_2022.jpg


The following terms and their respective definitions describe nature (i.e. reality as an all-encompassing whole) as being the only set which contains all universes simultaneously and immutably. In other words, nature can be described as being the largest multiverse.

To view hidden text inside each of the preformatted text boxes below, scroll horizontally.


UNIVERSE: exactly one unique spacetime continuum which contains energy (and possibly matter) arranged in a particular configuration.

Zero, some natural number, or infinitely many unique information processing agents inhabit any particular universe (and such information processing agents can possibly inhabit the same encompassing universe simultaneously or asynchronously).

The lifespan of any particular universe is either finite in duration or else infinitely long in temporal duration. A universe whose lifespan is infinitely long in duration is either a cyclical non-terminating universe or else a non-repeating non-terminating universe.

In a cyclical non-terminating universe, all of the matter and energy patterns, X, which occur inside of a particular finite time interval whose length is T arbitrarily atomic units of time (within that universe’s overall timeline) verbatim recur each time T seconds elapses immediately after X most recently transpired within that universe’s overall spacetime continuum. In pseudocode that can be represented as follows:

// This pseudocode function models a cyclical non-terminating universe's essential logic.
// (Note that i++ adds the same quantity to i universe.total_elapsed_time++ adds to universe.total_elapsed_time).
universe.elapse_time() {
    universe.render(universe.X[i]); // render a temporally atomic subset of X at the current time
    i++; // increment index of array X (such that X is a finite and chronological sequence of phenomena)
    universe.total_elapsed_time++; // elapse time by one arbitrarily atomic unit of time
    if (universe.total_elapsed_time % universe.T == 0) { // universe.T is a fixed and finite length of time
      i = 0; // reset the index of array X to zero (if a T-sized interval has elapsed at current time)
    }
    universe.elapse_time(); // recursively call this function to perpetuate universe's evolution
}

In a non-repeating non-terminating universe, all of the matter and energy patterns which occur inside of any specific finite time interval (of that universe’s overall timeline) are not guaranteed to repeat themselves verbatim and in immediate succession throughout that universe’s evolution. Instead, the emergence of phenomena throughout that universe’s evolutionary timeline are randomized to some degree. In pseudocode that can be represented as follows:

// This pseudocode function models a non-repeating non-terminating universe's essential logic.
// (Note that i++ adds the same quantity to i universe.total_elapsed_time++ adds to universe.total_elapsed_time).
universe.elapse_time() {
    universe.render(universe.X[i]); // render a temporally atomic subset of X at the current time
    i++; // increment index of array X (such that X is an infinitely long and chronological sequence of phenomena)
    universe.total_elapsed_time++; // elapse time by one arbitrarily atomic unit of time
    universe.elapse_time(); // recursively call this function to perpetuate universe's evolution
}

SUBJECTIVITY: the process an information processing agent implements which results in that information processing agent appearing to itself to be inhabiting its encompassing physical universe through the interface of a virtual model (i.e. simulation) of that information processing agent’s encompassing physical universe (which is rendered using that information processing agent’s physical hardware).

A physical process is more rudimentary than a virtual phenomenon. That is because all virtual phenomena depend on underlying physical processes to exist while physical processes can hypothetically occur without any frame of reference observing them.

Each information processing agent which exhibits subjectivity only experiences the simulation which that particular information processing agent’s constituent physical hardware renders. In other words, an information processing agent’s entire knowledge is a solipsistic phenomenon according to that information processing agent’s own frame of reference.

Note that is possible for there to be multiple (and indefinitely many) layers of virtuality within an information processing agent’s simulation. In pseudocode that can be represented as follows:

agent.render_simulation(information) {
  let i = X(information); // some finite or indefinite permutation of matter and energy transpiring within a finite or indefinite interval of spacetime which the agent observes and which transpires in accordance to function input
  while (i != terminating_condition) { // the simulation gains complexity if i is not an informational state which terminates the simulation process
    agent.render_simulation(i); // at least one more layer of virtuality is incorporated into the current simulation in a recursive manner
  }
}

MULTIVERSE: the hypothetical existence of multiple universes simultaneously or asynchronously.

Whether a particular universe or multiverse exists for a finite interval of time or for an indefinitely long period of time, a universe or multiverse’s existence is an immutable component of nature given that the respective universe or multiverse was not wholly interchangeable with pure nothingness.

The fact that this sentence is being rendered right now in some frame of reference is sufficient proof that something other than pure nothingness exists throughout all of nature (which means that nature cannot ever be devoid of something which is not wholly interchangeable with pure nothingness).


This web page was last updated on 09_JULY_2025. The content displayed on this web page is licensed as PUBLIC_DOMAIN intellectual property.